' ----------------------------------
'  Simple Program 4
' ----------------------------------
'  Please test this with "RUN"
'  And experiment with "Speed"
' ----------------------------------

' This program increases v1 from 0 to 10

v1 = v1 + 1

If v1 >= 10
	v1 = 0
	Beep
EndIf	

Slot(1) = v1

'WATCH v1
'WATCH Slot(1)
'EXEC Print Slot(1)
